home *** CD-ROM | disk | FTP | other *** search
/ Network CD 2 / Network CD - Volume 2.iso / programs / internet / tcp / amitcp / amitcp-src-22.lha / AmiTCP-2.2 / src / l / inet-handler / inet-handler.c < prev    next >
Encoding:
C/C++ Source or Header  |  1993-11-17  |  870 b   |  46 lines

  1. /*
  2.  * inet-handler.c
  3.  *
  4.  * Author: Tomi Ollila <too@cs.hut.fi>
  5.  *
  6.  * Copyright (c) 1993 AmiTCP/IP Group, <amitcp-group@hut.fi>
  7.  *                    All rights reserved.
  8.  *
  9.  * Created: Wed Sep 22 14:40:35 1993 too
  10.  * Last modified: Sun Nov 14 18:33:44 1993 too
  11.  *
  12.  * $Id: inet-handler.c,v 1.2 1993/11/17 12:06:50 too Exp $
  13.  *
  14.  * HISTORY
  15.  * $Log: inet-handler.c,v $
  16.  * Revision 1.2  1993/11/17  12:06:50  too
  17.  * Some startup fixes
  18.  *
  19.  * Revision 1.1  1993/10/24  12:50:39  too
  20.  * Initial revision
  21.  *
  22.  */
  23.  
  24. #if 0
  25. #ifdef __GNUC__
  26. asm(".text; jmp pc@(_start-.+2);");
  27. #endif
  28. #endif
  29.  
  30. asm(".text; jmp _start");
  31.  
  32. #if 0
  33. int main()
  34. {
  35.   extern int start(void);
  36.   
  37.   return start();
  38. }
  39. #endif
  40.  
  41. #include "inet-handler.h"
  42.  
  43. static const char version[] = VERSTAG " too\n\r"
  44.   "Copyright (c) 1993 AmiTCP/IP Group, <amitcp-group@hut.fi>\r\n"
  45.   "                   All rights reserved\r\n";
  46.